home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / stdg44.exe / lha / READTHIS.TXT < prev    next >
Text File  |  1994-01-13  |  2KB  |  37 lines

  1. The executables in this directory are tools to aid cross-platform programming.
  2. Following is an explanation of these tools and some examples.
  3. All programs are (c) Loki 1994, and can be freely distributed if unmodified.
  4.  
  5. Program: Text2Dos
  6. Purpose: Convert text files into DOS format. Works on Mac, Unix or DOS files.
  7. Usage:   text2dos [-?] filename1 [filename2 [...]]
  8. Example: text2dos *.c *.h
  9. Notes:   Text2Dos is safe to run on text files which are already in DOS format.
  10.  
  11. Program: Text2Mac
  12. Purpose: Convert text files to Mac format. Works on Mac, Unix or DOS files.
  13. Usage:   text2mac [-?] filename1 [filename2 [...]]
  14. Example: text2mac *.*
  15. Notes:   All of the Text2... programs refuse to convert binary files.
  16.  
  17. Program: Text2Unx
  18. Purpose: Convert text files to Unix format. Works on Mac, Unix or DOS files.
  19. Usage:   text2unx [-?] filename1 [filename2 [...]]
  20. Example: text2unx *.bak *.txt
  21. Notes:   Unix text files end each line with a newline char (hex 0A).
  22.  
  23. Program: Detab
  24. Purpose: Convert tabs into sequences of spaces so that indentation looks ok.
  25. Usage:   detab [-?] [tabsize] filename1 [filename2 [...]]
  26. Example: detab 8 *.c *.h
  27. Notes:   Tabstops are taken to be placed every 4 characters by default.
  28.          The example shows how to change this to every 8 characters.
  29.  
  30. Program: LS
  31. Purpose: List the files within a directory, sorted alphabetically or by size.
  32. Usage:   ls [-?] [-lcwodfaxnestru] [pathname]
  33. Example: ls -? provides a comprehensive list of the options for this program.
  34. Notes:   LS is similar to the UNIX program of the same name.
  35.          If you are using a network which has its own LS command, do not use
  36.          this program because it is purely a DOS program.
  37.